home *** CD-ROM | disk | FTP | other *** search
/ Giga Games 1 / Giga Games.iso / net / vir_real / multi102.taz / multi102 / multiverse-1.0 / extensions / ext_biwing.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-03-13  |  1.2 KB  |  52 lines

  1.  
  2. /**
  3.  
  4. #     #                                 #     #
  5. ##   ##  #    #  #        #####     #   #     #  ######  #####    ####   ######
  6. # # # #  #    #  #          #       #   #     #  #       #    #  #       #
  7. #  #  #  #    #  #          #       #   #     #  #####   #    #   ####   #####
  8. #     #  #    #  #          #       #    #   #   #       #####        #  #
  9. #     #  #    #  #          #       #     # #    #       #   #   #    #  #
  10. #     #   ####   ######     #       #      #     ######  #    #   ####   ######
  11.  
  12.  #####
  13. #     #   #   #   ####    #####  ######  #    #
  14. #          # #   #          #    #       ##  ##
  15.  #####      #     ####      #    #####   # ## #
  16.       #     #         #     #    #       #    #
  17. #     #     #    #    #     #    #       #    #
  18.  #####      #     ####      #    ######  #    #
  19.  
  20.     Copyright: Robert Grant, 1993
  21.  
  22. **/
  23.  
  24. #ifndef __EXT_BIWING_H__
  25. #define __EXT_BIWING_H__
  26.  
  27. /* Data used to fly a biwing */
  28.  
  29. #define MAX_MISSILES 3
  30. #define MAX_MINES 3
  31.  
  32. #define FLYING 0
  33. #define HIT 1
  34.  
  35. typedef struct biwing {
  36.     int speed;
  37.     int shields;
  38.     double temp;
  39.     int state;
  40.     int counter;
  41.     int score;
  42.     object_t *missile;
  43.     object_t *mine;
  44.     } biwingExt_t;
  45.  
  46. /* #defines used in ext_biwing.c */
  47.  
  48. #define MAXSPEED 40
  49. #define MINSPEED 0
  50.  
  51. #endif /* __EXT_BIWING_H__ */
  52.